I want to remove cell spacing of UICollectionView in our application. I use many code for removing space but they are not working. Please provide me the code also.
Thanks.
home / developersection / forums / how to remove cell spacing in uicollectionview in ios?
I want to remove cell spacing of UICollectionView in our application. I use many code for removing space but they are not working. Please provide me the code also.
Thanks.
Tarun Kumar
29-Dec-2015If you want to remove cell spacing in UICollectionView, then you need to set cell paddings. and collectionView provide some important methods to handle spacing are insetForSectionAtIndex: , minimumLineSpacingForSectionAtIndex: and minimumInteritemSpacingForSectionAtIndex: .
Here are the examples:
- (UIEdgeInsets)collectionView:(UICollectionView*)collectionView layout:(UICollectionViewLayout *)collectionViewLayout insetForSectionAtIndex:(NSInteger)section {return UIEdgeInsetsMake(10, 10, 8, 8); // top, left, bottom, right
}
- (CGFloat)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout*)collectionViewLayout minimumInteritemSpacingForSectionAtIndex:(NSInteger)section {
return 0.0;
}